home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / ck5a189s / ckcfns.c < prev    next >
C/C++ Source or Header  |  1993-06-12  |  72KB  |  2,213 lines

  1. char *fnsv = "C-Kermit functions, 5A(089) 11 Jun 93";
  2.  
  3. /*  C K C F N S  --  System-independent Kermit protocol support functions.  */
  4.  
  5. /*  ...Part 1 (others moved to ckcfn2,3 to make this module smaller) */
  6.  
  7. /*
  8.   Author: Frank da Cruz (fdc@columbia.edu, FDCCU@CUVMA.BITNET),
  9.   Columbia University Academic Information Systems, New York City.
  10.  
  11.   Copyright (C) 1985, 1993, Trustees of Columbia University in the City of New
  12.   York.  The C-Kermit software may not be, in whole or in part, licensed or
  13.   sold for profit as a software product itself, nor may it be included in or
  14.   distributed with commercial products or otherwise distributed by commercial
  15.   concerns to their clients or customers without written permission of the
  16.   Office of Kermit Development and Distribution, Columbia University.  This
  17.   copyright notice must not be removed, altered, or obscured.
  18. */
  19. /*
  20.  System-dependent primitives defined in:
  21.  
  22.    ck?tio.c -- terminal i/o
  23.    cx?fio.c -- file i/o, directory structure
  24. */
  25. #include "ckcsym.h"            /* Once needed this for Mac... */
  26. #include "ckcasc.h"            /* ASCII symbols */
  27. #include "ckcdeb.h"            /* Debug formats, typedefs, etc. */
  28. #include "ckcker.h"            /* Symbol definitions for Kermit */
  29. #include "ckcxla.h"            /* Character set symbols */
  30.  
  31. /* Externals from ckcmai.c */
  32. extern int spsiz, spmax, rpsiz, timint, srvtim, rtimo, npad, ebq, ebqflg,
  33.  rpt, rptq, rptflg, capas, keep, fncact, pkttim, autopar, spsizr, xitsta;
  34. extern int pktnum, bctr, bctu, bctl, fmask, clfils, sbufnum,
  35.  size, osize, spktl, nfils, warn, timef, spsizf, sndtyp, rcvtyp, success;
  36. extern int parity, turn, network, what, fsecs,
  37.  delay, displa, xflg, mypadn;
  38. extern long filcnt, ffc, flci, flco, tlci, tlco, tfc, fsize, speed;
  39. extern int fblksiz, frecl, frecfm, forg, fcctrl;
  40. extern int spackets, rpackets, timeouts, retrans, crunched, wmax, wcur;
  41. extern int hcflg, binary, savmod, fncnv, local, server, cxseen, czseen;
  42. extern int nakstate, discard;
  43. extern int rq, rqf, sq, wslots, wslotn, wslotr, winlo, urpsiz, rln;
  44. extern int atcapr, atcapb, atcapu;
  45. extern int lpcapr, lpcapb, lpcapu;
  46. extern int swcapr, swcapb, swcapu;
  47. extern int lscapr, lscapb, lscapu;
  48. extern int bsave, bsavef, rptena, rptmin;
  49. extern int sseqtbl[];
  50. extern int numerrs;
  51. extern long rptn;
  52. extern int maxtry;
  53. extern int stdouf;
  54.  
  55. #ifndef NOCSETS
  56. extern int tcharset, fcharset;
  57. extern int ntcsets;
  58. extern struct csinfo tcsinfo[], fcsinfo[];
  59. #endif /* NOCSETS */
  60.  
  61. extern int
  62.   atenci, atenco, atdati, atdato, atleni, atleno, atblki, atblko,
  63.   attypi, attypo, atsidi, atsido, atsysi, atsyso, atdisi, atdiso; 
  64.  
  65. extern int bigsbsiz, bigrbsiz;
  66. extern char *versio;
  67.  
  68. #ifdef DYNAMIC
  69.   extern CHAR *srvcmd;
  70. #else
  71.   extern CHAR srvcmd[];
  72. #endif /* DYNAMIC */
  73. extern CHAR padch, mypadc, eol, seol, ctlq, myctlq, sstate, myrptq;
  74. extern CHAR *recpkt, *data, padbuf[], stchr, mystch;
  75. extern CHAR *srvptr;
  76. extern CHAR *rdatap;
  77. extern char *cmarg, *cmarg2, *hlptxt, **cmlist, filnam[], fspec[];
  78.  
  79. _PROTOTYP( CHAR *rpar, (void) );
  80. _PROTOTYP( int lslook, (unsigned int b) );    /* Locking Shift Lookahead */
  81. _PROTOTYP( int szeof, (CHAR *s) );
  82.  
  83. /* International character sets */
  84.  
  85. #ifndef NOCSETS
  86. /* Pointers to translation functions */
  87. #ifdef CK_ANSIC
  88. extern CHAR (*xls[MAXTCSETS+1][MAXFCSETS+1])(CHAR); /* Character set */
  89. extern CHAR (*xlr[MAXTCSETS+1][MAXFCSETS+1])(CHAR); /* translation functions */
  90. #else
  91. extern CHAR (*xls[MAXTCSETS+1][MAXFCSETS+1])();    /* Character set */
  92. extern CHAR (*xlr[MAXTCSETS+1][MAXFCSETS+1])();    /* translation functions. */
  93. #endif /* CK_ANSIC */
  94. _PROTOTYP( CHAR (*rx), (CHAR) );    /* Input translation function */
  95. _PROTOTYP( CHAR (*sx), (CHAR) );    /* Output translation function */
  96. _PROTOTYP( CHAR ident, (CHAR) );    /* Identity translation function */
  97. #endif /* NOCSETS */
  98.  
  99. /* Windowing things */
  100.  
  101. extern int rseqtbl[];            /* Rec'd-packet sequence # table */
  102.  
  103. /* (PWP) external def. of things used in buffered file input and output */
  104.  
  105. #ifdef DYNAMIC
  106. extern char *zinbuffer, *zoutbuffer;
  107. #else
  108. extern char zinbuffer[], zoutbuffer[];
  109. #endif
  110. extern char *zinptr, *zoutptr;
  111. extern int zincnt, zoutcnt;
  112.  
  113. /*
  114.   Variables defined in this module but shared by other modules.
  115. */
  116.  
  117. #ifdef CK_SPEED
  118. short ctlp[256] = {        /* Control-Prefix table */
  119.   1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* C0  */
  120.   0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* G0  */
  121.   0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  122.   0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1, /* DEL */
  123.   1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, /* C1  */
  124.   0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* G1  */
  125.   0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  126.   0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1  /* 255 */
  127. };
  128. #endif /* CK_SPEED */
  129.  
  130. int sndsrc;        /* Flag for where to get names of files to send: */
  131.                     /* -1: znext() function */
  132.                     /*  0: stdin */
  133.                     /* >0: list in cmlist */
  134.  
  135. int  memstr;                /* Flag for input from memory string */
  136.  
  137. #ifdef pdp11
  138. CHAR myinit[25];            /* Copy of my Send-Init data */
  139. #else
  140. CHAR myinit[100];            /* Copy of my Send-Init data */
  141. #endif /* pdp11 */
  142.  
  143. /* Variables local to this module */
  144.  
  145. static char *memptr;            /* Pointer for memory strings */
  146.  
  147. #ifdef pdp11
  148. static char cmdstr[50];            /* System command string. */
  149. #else
  150. static char cmdstr[100];
  151. #endif /* pdp11 */
  152.  
  153. static int drain;            /* For draining stacked-up ACKs. */
  154.  
  155. static int first;            /* Flag for first char from input */
  156. static CHAR t,                /* Current character */
  157.     next;                /* Next character */
  158.  
  159. static int ebqsent = 0;            /* 8th-bit prefix bid that I sent */
  160. static int lsstate = 0;            /* Locking shift state */
  161. static int lsquote = 0;            /* Locking shift quote */
  162.  
  163. #ifdef datageneral
  164. extern int quiet;
  165. #endif
  166.  
  167. /*  E N C S T R  --  Encode a string from memory. */
  168.  
  169. /*
  170.   Call this instead of getpkt() if source is a string, rather than a file.
  171.   Note: Character set translation is never done in this case.
  172. */
  173.  
  174. #ifdef pdp11
  175. #define ENCBUFL 100
  176. #else
  177. #define ENCBUFL 200
  178. #endif /* pdp11 */
  179. CHAR encbuf[ENCBUFL];
  180.  
  181. int
  182. encstr(s) CHAR* s; {
  183.     int m; char *p;
  184.     CHAR *dsave;
  185.  
  186.     if ((m = (int)strlen((char *)s)) > ENCBUFL) {
  187.     debug(F111,"encstr string too long for buffer",s,ENCBUFL);
  188.     s[ENCBUFL] = '\0';
  189.     }
  190.     if (m > spsiz-bctl-3) {
  191.     debug(F111,"encstr string too long for packet",s,spsiz-bctl-3);
  192.     s[spsiz-bctl-3] = '\0';
  193.     }
  194.     m = memstr; p = memptr;        /* Save these. */
  195.  
  196.     memptr = (char *)s;            /* Point to the string. */
  197.     memstr = 1;                /* Flag memory string as source. */
  198.     first = 1;                /* Initialize character lookahead. */
  199.     dsave = data;            /* Boy is this ugly... */
  200.     data = encbuf + 7;            /* Why + 7?  See spack()... */
  201. #ifdef COMMENT
  202.     getpkt(spsiz-bctl-3,0);        /* Fill a packet from the string. */
  203. #else
  204.     getpkt(spsiz,0);
  205. #endif /* COMMENT */
  206.     data = dsave;            /* (sorry...) */
  207.     memstr = m;                /* Restore memory string flag */
  208.     memptr = p;                /* and pointer */
  209.     first = 1;                /* Put this back as we found it. */
  210.     return(0);
  211. }
  212.  
  213. #ifdef COMMENT
  214. /*
  215.   We don't use this routine any more -- the code has been incorporated
  216.   directly into getpkt() to reduce per-character function call overhead.
  217.   Also, watch out: it hasn't been updated since it was commented out a
  218.   long time ago.
  219. */
  220. /* E N C O D E - Kermit packet encoding procedure */
  221.  
  222. VOID
  223. encode(a) CHAR a; {            /* The current character */
  224.     int a7;                /* Low order 7 bits of character */
  225.     int b8;                /* 8th bit of character */
  226.  
  227. #ifndef NOCSETS
  228.     if (!binary && sx) a = (*sx)(a);    /* Translate. */
  229. #endif /* NOCSETS */
  230.  
  231.     if (rptflg)    {                   /* Repeat processing? */
  232.         if (a == next && (first == 0)) { /* Got a run... */
  233.         if (++rpt < 94)        /* Below max, just count */
  234.                 return;
  235.         else if (rpt == 94) {    /* Reached max, must dump */
  236.                 data[size++] = rptq;
  237.                 data[size++] = tochar(rpt);
  238.         rptn += rpt;        /* Count, for stats */
  239.                 rpt = 0;
  240.         }
  241.         } else if (rpt == 1) {        /* Run broken, only 2? */
  242.             rpt = 0;            /* Yes, reset repeat flag & count. */
  243.         encode(a);            /* Do the character twice. */
  244.         if (size <= maxsize) osize = size;
  245.         rpt = 0;
  246.         encode(a);
  247.         return;
  248.     } else if (rpt > 1) {        /* More than two */
  249.             data[size++] = rptq;    /* Insert the repeat prefix */
  250.             data[size++] = tochar(++rpt); /* and count. */
  251.         rptn += rpt;
  252.             rpt = 0;            /* Reset repeat counter. */
  253.         }
  254.     }
  255.     a7 = a & 0177;            /* Isolate ASCII part */
  256.     b8 = a & 0200;            /* and 8th (parity) bit. */
  257.  
  258.     if (ebqflg && b8) {            /* Do 8th bit prefix if necessary. */
  259.         data[size++] = ebq;
  260.         a = a7;
  261.     }
  262.     if ((a7 < SP) || (a7==DEL))    {    /* Do control prefix if necessary */
  263.         data[size++] = myctlq;
  264.     a = ctl(a);
  265.     }
  266.     if (a7 == myctlq)            /* Prefix the control prefix */
  267.         data[size++] = myctlq;
  268.  
  269.     if ((rptflg) && (a7 == rptq))    /* If it's the repeat prefix, */
  270.         data[size++] = myctlq;        /* quote it if doing repeat counts. */
  271.  
  272.     if ((ebqflg) && (a7 == ebq))    /* Prefix the 8th bit prefix */
  273.         data[size++] = myctlq;        /* if doing 8th-bit prefixes */
  274.  
  275.     data[size++] = a;            /* Finally, insert the character */
  276.     data[size] = '\0';            /* itself, and mark the end. */
  277. }
  278. #endif /* COMMENT */
  279.  
  280. /*  Output functions passed to 'decode':  */
  281.  
  282. int                   /*  Put character in server command buffer  */
  283. #ifdef CK_ANSIC
  284. putsrv(char c)
  285. #else
  286. putsrv(c) register char c;
  287. #endif /* CK_ANSIC */
  288. /* putsrv */ {
  289.     *srvptr++ = c;
  290.     *srvptr = '\0';        /* Make sure buffer is null-terminated */
  291.     return(0);
  292. }
  293.  
  294. int                    /*  Output character to console.  */
  295. #ifdef CK_ANSIC
  296. puttrm(char c)
  297. #else
  298. puttrm(c) register char c;
  299. #endif /* CK_ANSIC */
  300. /* puttrm */ {
  301.     conoc(c);
  302.     return(0);
  303. }
  304.  
  305. int                    /*  Output char to file. */
  306. #ifdef CK_ANSIC
  307. putfil(char c)
  308. #else
  309. putfil(c) register char c;
  310. #endif /* CK_ANSIC */
  311. /* putfil */ {
  312.     if (zchout(ZOFILE, (char) (c & fmask)) < 0) {
  313.     czseen = 1;               /* If write error... */
  314.     debug(F101,"putfil zchout write error, setting czseen","",1);
  315.     return(-1);
  316.     }
  317.     return(0);
  318. }
  319.  
  320. /* D E C O D E  --  Kermit packet decoding procedure */
  321.  
  322. /*
  323.  Call with string to be decoded and an output function.
  324.  Returns 0 on success, -1 on failure (e.g. disk full).
  325.  
  326.  This is the "inner loop" when receiving files, and must be coded as 
  327.  efficiently as possible.  Note some potential problems:  if a packet
  328.  is badly formed, having a prefixed sequence ending prematurely, this
  329.  function, as coded, could read past the end of the packet.  This has
  330.  never happened, thus the additional (time-consuming) tests have not
  331.  been added.
  332. */
  333.  
  334. static CHAR *xdbuf;    /* Global version of decode()'s buffer pointer */
  335.                         /* for use by translation functions. */
  336.  
  337. /* Function for pushing a character onto decode()'s input stream. */
  338.  
  339. VOID
  340. #ifdef CK_ANSIC
  341. zdstuff(CHAR c)
  342. #else
  343. zdstuff(c) CHAR c;
  344. #endif /* CK_ANSIC */
  345. /* zdstuff */ {    
  346.     xdbuf--;                /* Back up the pointer. */
  347.     *xdbuf = c;                /* Stuff the character. */
  348. }
  349.  
  350. int
  351. #ifdef CK_ANSIC
  352. decode(CHAR *buf, int (*fn)(char), int xlate)
  353. #else
  354. decode(buf,fn,xlate) register CHAR *buf; register int (*fn)(); int xlate;
  355. #endif /* CK_ANSIC */
  356. /* decode */ {
  357.     register unsigned int a, a7, a8, b8; /* Various copies of current char */
  358.     int t;                /* Int version of character */
  359.     int ssflg;                /* Character was single-shifted */
  360.  
  361. /*
  362.   Catch the case in which we are asked to decode into a file that is not open,
  363.   for example, if the user interrupted the transfer, but the other Kermit
  364.   keeps sending.
  365. */
  366.     if ((cxseen || czseen || discard) && (fn == putfil))
  367.       return(0);
  368.  
  369.     xdbuf = buf;            /* Make global copy of pointer. */
  370.     rpt = 0;                /* Initialize repeat count. */
  371.  
  372.     while ((a = *xdbuf++ & 0xFF) != '\0') { /* Get next character. */
  373.     if (a == rptq && rptflg) {    /* Got a repeat prefix? */
  374.         rpt = xunchar(*xdbuf++ & 0xFF); /* Yes, get the repeat count, */
  375.         rptn += rpt;
  376.         a = *xdbuf++ & 0xFF;    /* and get the prefixed character. */
  377.     }
  378.     b8 = lsstate ? 0200 : 0;    /* 8th-bit value from SHIFT-STATE */
  379.     if (ebqflg && a == ebq) {    /* Have 8th-bit prefix? */
  380.         b8 ^= 0200;            /* Yes, invert the 8th bit's value, */
  381.         ssflg = 1;            /* remember we did this, */
  382.         a = *xdbuf++ & 0xFF;    /* and get the prefixed character. */
  383.     } else ssflg = 0;
  384.  
  385.     if (a == ctlq) {        /* If control prefix, */
  386.         a  = *xdbuf++ & 0xFF;    /* get its operand */
  387.         a7 = a & 0x7F;        /* and its low 7 bits. */
  388.         if ((a7 >= 0100 && a7 <= 0137) || a7 == '?') /* Controllify */
  389.           a = ctl(a);        /* if in control range. */
  390.         if (lscapu) {        /* If doing locking shifts... */
  391.         if (lsstate)        /* If SHIFTED */
  392.           a8 = (a & ~b8) & 0xFF; /* Invert meaning of 8th bit */
  393.         else            /* otherwise */
  394.           a8 = a | b8;        /* OR in 8th bit */
  395.         /* If we're not in a quoted sequence */
  396.         if (!lsquote && (!lsstate || !ssflg)) {
  397.             if (a8 == DLE) {    /* Check for DLE quote */
  398.             lsquote = 1;    /* prefixed by single shift! */
  399.             continue;
  400.             } else if (a8 == SO) { /* Check for Shift-Out */
  401.             lsstate = 1;    /* SHIFT-STATE = SHIFTED */
  402.             continue;
  403.             } else if (a8 == SI) { /* or Shift-In */
  404.             lsstate = 0;    /* SHIFT-STATE = UNSHIFTED */
  405.             continue;
  406.             }
  407.         } else lsquote = 0;
  408.         }
  409.     }
  410.     a |= b8;            /* OR in the 8th bit */
  411.     if (rpt == 0) rpt = 1;        /* If no repeats, then one */
  412.     if (!binary) {            /* If in text mode, */
  413. #ifdef NLCHAR
  414.         if (a == CR) continue;    /* Discard carriage returns, */
  415.             if (a == LF) a = NLCHAR;     /* convert LF to system's newline. */
  416. #endif /* NLCHAR */
  417.  
  418. #ifndef NOCSETS                /* Character-set translation */
  419. #ifdef KANJI                /* For Kanji transfers, */
  420.         if (tcharset != TC_JEUC)    /* postpone translation. */
  421. #endif /* KANJI */
  422.           if (xlate && rx) a = (*rx)((CHAR) a); /* Translate charset */
  423. #endif /* NOCSETS */
  424.         }
  425.     if (fn == putfil) { /* (PWP) speedup via buffered output and a macro */
  426.         for (; rpt > 0; rpt--) {    /* Output the char RPT times */
  427. #ifndef NOCSETS
  428. #ifdef KANJI
  429.         if (!binary && tcharset == TC_JEUC &&
  430.             fcharset != FC_JEUC) { /* Translating from J-EUC */
  431.             if (ffc == 0L) xkanjf();
  432.             if (xkanji(a,fn) < 0)  /* to something else? */
  433.               return(-1);
  434.         } else
  435. #endif /* KANJI */
  436. #endif /* NOCSETS */
  437.         if ((t = zmchout(a & fmask)) < 0) { /* zmchout is a macro */
  438. #ifdef COMMENT
  439. /* Too costly, uncomment these if you really need them. */
  440.             debug(F101,"decode zmchout","",t);
  441.             debug(F101,"decode zoutcnt","",zoutcnt);
  442.             debug(F101,"decode a","",a);
  443. #endif /* COMMENT */
  444.             return(-1);
  445.         }
  446.         ffc++;            /* Count the character */
  447.         }
  448.     } else {            /* Output to something else. */
  449.         a &= fmask;            /* Apply file mask */
  450.         for (; rpt > 0; rpt--) {    /* Output the char RPT times */
  451.         if ((*fn)((char) a) < 0) return(-1); /* Send to output func. */
  452.         ffc++;
  453.         }
  454.     }
  455.     }
  456.     return(0);
  457. }
  458.  
  459. /*  G E T P K T -- Fill a packet data field  */
  460.  
  461. /*
  462.  Gets characters from the current source -- file or memory string.
  463.  Encodes the data into the packet, filling the packet optimally.
  464.  Set first = 1 when calling for the first time on a given input stream
  465.  (string or file).
  466.  
  467.  Call with:
  468.  bufmax -- current send-packet size
  469.  xlate  -- flag: 0 to skip character-set translation, 1 to translate
  470.  
  471.  Uses global variables:
  472.  t     -- current character.
  473.  first -- flag: 1 to start up, 0 for input in progress, -1 for EOF.
  474.  next  -- next character.
  475.  data  -- pointer to the packet data buffer.
  476.  size  -- number of characters in the data buffer.
  477.  memstr - flag that input is coming from a memory string instead of a file.
  478.  memptr - pointer to string in memory.
  479.  (*sx)()  character set translation function
  480.  
  481. Returns the size as value of the function, and also sets global "size",
  482. and fills (and null-terminates) the global data array.  Returns 0 upon eof.
  483.  
  484. Rewritten by Paul W. Placeway (PWP) of Ohio State University, March 1989.
  485. Incorporates old getchx() and encode() inline to reduce function calls,
  486. uses buffered input for much-improved efficiency, and clears up some
  487. confusion with line termination (CRLF vs LF vs CR).
  488.  
  489. Rewritten again by Frank da Cruz to incorporate locking shift mechanism,
  490. May 1991.
  491. */
  492.  
  493. /*
  494.   Lookahead function to decide whether locking shift is worth it.  Looks at
  495.   the next four input characters to see if all of their 8th bits match the
  496.   argument.  Call with 0 or 0200.  Returns 1 if so, 0 if not.  If we don't
  497.   happen to have at least 4 more characters waiting in the input buffer,
  498.   returns 1.  Note that zinptr points two characters ahead of the current
  499.   character because of repeat-count lookahead.
  500. */
  501.  
  502. #ifdef KANJI
  503. int
  504. kgetf() {
  505.     return(zminchar());
  506. }
  507.  
  508. int
  509. kgetm() {
  510.     int x;
  511.     if (x = *memptr++) return(x);
  512.     else return(-1);
  513. }
  514. #endif /* KANJI */
  515.  
  516. int
  517. lslook(b) unsigned int b; {        /* Locking Shift Lookahead */
  518.     int i;
  519.     if (zincnt < 3)            /* If not enough chars in buffer, */
  520.       return(1);            /* force shift-state switch. */
  521.     b &= 0200;                /* Force argument to proper form. */
  522.     for (i = -1; i < 3; i++)        /* Look at next 5 characters to */
  523.       if (((*(zinptr+i)) & 0200) != b)    /* see if all their 8th bits match.  */
  524.     return(0);            /* They don't. */
  525.     return(1);                /* They do. */
  526. }
  527.  
  528. int
  529. getpkt(bufmax,xlate) int bufmax, xlate; { /* Fill one packet buffer */
  530.     register CHAR rt = t, rnext = next; /* register shadows of the globals */
  531.     register CHAR *dp, *odp, *odp2, *p1, *p2; /* pointers... */
  532.     register int x;            /* Loop index. */
  533.     register int a7;            /* Low 7 bits of character */
  534.     static CHAR leftover[9] = { '\0','\0','\0','\0','\0','\0','\0','\0','\0' };
  535.     CHAR xxls, xxdl, xxrc, xxss, xxcq;    /* Pieces of prefixed sequence */
  536.     int n;                /* worker */
  537.  
  538. /*
  539.   Assume bufmax is the receiver's total receive-packet buffer length.
  540.   Our whole packet has to fit into it, so we adjust the data field length.
  541.   We also decide optimally whether it is better to use a short-format or
  542.   long-format packet when we're near the borderline.
  543. */
  544.     n = bufmax - 5;            /* Space for Data and Checksum */
  545.     if (n > 92 && n < 96) n = 92;    /* "Short" Long packets don't pay */
  546.     if (n > 92 && lpcapu == 0)        /* If long packets needed, */
  547.       n = 92;                /* make sure they've been negotiated */
  548.     bufmax = n - bctl;            /* Space for data */
  549.     if (n > 92) bufmax -= 3;        /* Long packet needs header chksum */
  550.  
  551.     if (first == 1) {        /* If first character of this file... */
  552.     if (!memstr) ffc = 0L;    /* Reset file character counter */
  553.     first = 0;        /* Next character won't be first */
  554.     *leftover = '\0';    /* Discard any interrupted leftovers, */
  555.  
  556.     /* get first character of file into rt, watching out for null file */
  557.  
  558. #ifndef NOCSETS
  559. #ifdef KANJI
  560.     if (!binary && tcharset == TC_JEUC && xlate) {
  561.         x = zkanjf();
  562.         if ((x = zkanji( memstr ? kgetm : kgetf )) < 0) {
  563.             first = -1;
  564.             size = 0;
  565.             if (x == -2) {
  566.                 debug(F100,"getpkt(zkanji): input error","",0);
  567.                 cxseen = 1;
  568.             } else debug(F100,"getpkt(zkanji): empty string/file","",0);
  569.             return (0);
  570.         }
  571.         if (!memstr) ffc++;
  572.         rt = x;
  573.     } else {
  574. #endif /* KANJI */
  575. #endif /* not NOCSETS */
  576.     if (memstr) {            /* Reading data from memory string */
  577.         if ((rt = *memptr++) == '\0') { /* end of string ==> EOF */
  578.         first = -1;
  579.             size = 0;
  580.         debug(F100,"getpkt: empty string","",0);
  581.         return (0);
  582.         }
  583.  
  584.     } else {            /* Reading data from a file */
  585.  
  586.         if ((x = zminchar()) < 0) { /* End of file or input error */
  587.         first = -1;
  588.             size = 0;
  589.         if (x == -2) {        /* Error */
  590.             debug(F100,"getpkt: input error","",0);
  591.             cxseen = 1;        /* Interrupt the file transfer */
  592.         } else debug(F100,"getpkt: empty file","",0); /* Empty file */
  593.         return(0);
  594.         }
  595.         ffc++;            /* Count a file character */
  596.         rt = x;            /* Convert int to char */
  597.         debug(F101,"getpkt zminchar","",rt);
  598.     }
  599. #ifndef NOCSETS
  600. #ifdef KANJI
  601.     }
  602. #endif /* KANJI */
  603. #endif /* not NOCSETS */
  604.  
  605.     rt &= fmask;            /* Apply SET FILE BYTESIZE mask */
  606.     debug(F101,"getpkt fmask","",fmask);
  607.     debug(F101,"getpkt new rt","",rt);
  608.  
  609. #ifndef NOCSETS
  610.     if (xlate) {
  611.         debug(F101,"getpkt about to call translate function","",rt);
  612.         debug(F101,"tcharset","",tcharset);
  613.         debug(F101,"fcharset","",fcharset);
  614.     }
  615. #ifdef KANJI
  616.     if (tcharset != TC_JEUC)
  617. #endif /* KANJI */
  618.       if (!binary && sx && xlate) {
  619.           rt = (*sx)(rt); /* Translate */
  620.           debug(F101," translate function returns","",rt);
  621.       }
  622. #endif /* not NOCSETS */
  623.  
  624.     /* PWP: handling of NLCHAR is done later (in the while loop)... */
  625.  
  626.     } else if ((first == -1) && (*leftover == '\0')) /* EOF from last time? */
  627.         return(size = 0);
  628. /*
  629.   Here we handle characters that were encoded for the last packet but
  630.   did not fit, and so were saved in the "leftover" array.
  631. */
  632.     dp = data;                /* Point to packet data buffer */
  633.     for (p1 = leftover; (*dp = *p1) != '\0'; p1++, dp++) /* Copy leftovers */
  634.         ;
  635.     *leftover = '\0';            /* Delete leftovers */
  636.     if (first == -1)            /* Handle EOF */
  637.       return(size = (dp - data));
  638.   
  639. /* Now fill up the rest of the packet. */
  640.  
  641.     rpt = 0;                /* Initialize character repeat count */
  642.  
  643.     while (first > -1) {        /* Until EOF... */
  644. #ifndef NOCSETS
  645. #ifdef KANJI
  646.     if (!binary && xlate && tcharset == TC_JEUC) {
  647.         if ((x = zkanji( memstr ? kgetm : kgetf )) < 0) {
  648.             first = -1;
  649.             if (x == -2) cxseen = 1;
  650.         } else if (!memstr) ffc++;
  651.         rnext = x & fmask;
  652.     } else {
  653. #endif /* KANJI */
  654. #endif /* not NOCSETS */
  655.     if (memstr) {            /* Get next char from memory string */
  656.         if ((x = *memptr++) == '\0') /* End of string means EOF */
  657.           first = -1;        /* Flag EOF for next time. */
  658.         rnext = x & fmask;        /* Apply file mask */
  659.     } else {
  660.         if ((x = zminchar()) < 0) { /* Real file, check for EOF */
  661.         first = -1;        /* Flag eof for next time. */
  662.         if (x == -2) cxseen = 1; /* If error, cancel this file. */
  663.         } else ffc++;        /* Count the character */
  664.         rnext = x & fmask;        /* Apply file mask */
  665.     } 
  666. #ifndef NOCSETS
  667. #ifdef KANJI
  668.     }
  669. #endif /* KANJI */
  670. #endif /* not NOCSETS */
  671.  
  672. #ifndef NOCSETS
  673. #ifdef KANJI
  674.     if (tcharset != TC_JEUC)
  675. #endif /* KANJI */
  676.         if (!binary && sx && xlate) {
  677.         rnext = (*sx)(rnext); /* Translate */
  678.         debug(F101,"getpkt xlated rnext to","",rnext);
  679.         }
  680. #endif /* not NOCSETS */
  681.  
  682.     odp = dp;            /* Remember where we started. */
  683.     xxls = xxdl = xxrc = xxss = xxcq = NUL;    /* Clear these. */
  684.  
  685. /*
  686.   Now encode the character according to the options that are in effect:
  687.     ctlp[]: whether this control character needs prefixing.
  688.     binary: text or binary mode.
  689.     rptflg: repeat counts enabled.
  690.     ebqflg: 8th-bit prefixing enabled.
  691.     lscapu: locking shifts enabled.
  692. */
  693.     if (rptflg) {            /* Repeat processing is on? */
  694.         if (
  695. #ifdef NLCHAR
  696.         /*
  697.          * If the next char is really CRLF, then we cannot
  698.          * be doing a repeat (unless CR,CR,LF which becomes
  699.          * "~ <n-1> CR CR LF", which is OK but not most efficient).
  700.          * I just plain don't worry about this case.  The actual
  701.          * conversion from NL to CRLF is done after the rptflg if...
  702.          */
  703.         (binary || (rnext != NLCHAR)) &&
  704. #endif /* NLCHAR */
  705.         (rt == rnext) && (first == 0)) { /* Got a run... */
  706.         if (++rpt < 94) {    /* Below max, just count */
  707.             continue;        /* go back and get another */
  708.         }
  709.         else if (rpt == 94) {    /* Reached max, must dump */
  710.             xxrc = tochar(rpt);    /* Put the repeat count here */
  711.             rptn += rpt;    /* Accumulate it for statistics */
  712.             rpt = 0;        /* And reset it */
  713.         }
  714.         } else if (rpt > 1) {    /* More than two */
  715.         xxrc = tochar(++rpt);    /* and count. */
  716.         rptn += rpt;
  717.         rpt = 0;        /* Reset repeat counter. */
  718.         }
  719.         /*
  720.           If (rpt == 1) we must encode exactly two characters.
  721.           This is done later, after the first character is encoded.
  722.         */
  723.     }
  724.  
  725. #ifdef NLCHAR
  726.     if (!binary && (rt == NLCHAR)) { /* It's the newline character */
  727.         if (lscapu && lsstate) {    /* If SHIFT-STATE is SHIFTED */
  728.         if (ebqflg) {        /* If single shifts enabled, */
  729.             *dp++ = ebq;    /* insert a single shift. */
  730.         } else {        /* Otherwise must shift in. */
  731.             *dp++ = myctlq;    /* Insert shift-out code */
  732.             *dp++ = 'O';
  733.             lsstate = 0;    /* Change shift state */
  734.         }
  735.         }
  736. #ifdef CK_SPEED
  737.         if (ctlp[CR]) {
  738.         *dp++ = myctlq;        /* Insert carriage return directly */
  739.         *dp++ = 'M';
  740.         } else *dp++ = CR;        /* Perhaps literally */
  741. #else /* !CK_SPEED */
  742.         *dp++ = myctlq;        /* Insert carriage return directly */
  743.         *dp++ = 'M';
  744. #endif /* CK_SPEED */
  745.         rt = LF;            /* Now make next char be linefeed. */
  746.     }
  747. #endif /* NLCHAR */
  748.  
  749. /*
  750.   Now handle the 8th bit of the file character.  If we have an 8-bit
  751.   connection, we preserve the 8th bit.  If we have a 7-bit connection,
  752.   we employ either single or locking shifts (if they are enabled).
  753. */
  754.     a7 = rt & 0177;            /* Get low 7 bits of character */
  755.     if (rt & 0200) {        /* 8-bit character? */
  756.         if (lscapu) {        /* Locking shifts enabled? */
  757.         if (!lsstate) {        /* Not currently shifted? */
  758.             x = lslook(0200);    /* Look ahead */
  759.             if (x != 0 || ebqflg == 0) { /* Locking shift decision */
  760.             xxls = 'N';       /* Need locking shift-out */
  761.             lsstate = 1;       /* and change to shifted state */
  762.             } else if (ebqflg) {   /* Not worth it */
  763.             xxss = ebq;       /* Use single shift */
  764.             }
  765.         }
  766.         rt = a7;        /* Replace character by 7-bit value */
  767.         } else if (ebqflg) {    /* 8th bit prefixing is on? */
  768.         xxss = ebq;        /* Insert single shift */
  769.         rt = a7;        /* Replace character by 7-bit value */
  770.         }
  771. /*
  772.   In case we have a 7-bit connection and this is an 8-bit character, AND
  773.   neither locking shifts nor single shifts are enabled, then the character's
  774.   8th bit will be destroyed in transmission, and a block check error will
  775.   occur.
  776. */
  777.     } else if (lscapu) {        /* 7-bit character */
  778.  
  779.         if (lsstate) {        /* Comes while shifted out? */
  780.         x = lslook(0);        /* Yes, look ahead */
  781.         if (x || ebqflg == 0) {    /* Time to shift in. */
  782.             xxls = 'O';        /* Set shift-in code */
  783.             lsstate = 0;    /* Exit shifted state */
  784.         } else if (ebqflg) {    /* Not worth it, stay shifted out */
  785.             xxss = ebq;        /* Insert single shift */
  786.         }
  787.         }
  788.     }
  789.     /* If data character is significant to locking shift protocol... */
  790.     if (lscapu && (a7 == SO || a7 == SI || a7 == DLE))
  791.       xxdl = 'P';            /* Insert datalink escape */
  792.  
  793.     if (
  794. #ifdef CK_SPEED
  795.         ctlp[rt]
  796. #else
  797.         (a7 < SP) || (a7 == DEL)
  798. #endif /* CK_SPEED */
  799.         ) {                /* Do control prefixing if necessary */
  800.         xxcq = myctlq;        /* The prefix */
  801.         rt = ctl(rt);        /* Uncontrollify the character */
  802.     }
  803.     if (a7 == myctlq)        /* Always prefix the control prefix */
  804.       xxcq = myctlq;
  805.  
  806.     if ((rptflg) && (a7 == rptq))    /* If it's the repeat prefix, */
  807.       xxcq = myctlq;        /* prefix it if doing repeat counts */
  808.  
  809.     if ((ebqflg) && (a7 == ebq))    /* Prefix the 8th-bit prefix */
  810.       xxcq = myctlq;        /* if doing 8th-bit prefixes */
  811.  
  812. /* Now construct the entire sequence */
  813.  
  814.     if (xxls) { *dp++ = myctlq; *dp++ = xxls; } /* Locking shift */
  815.     odp2 = dp;                    /* (Save this place) */
  816.     if (xxdl) { *dp++ = myctlq; *dp++ = xxdl; } /* Datalink escape */
  817.     if (xxrc) { *dp++ =   rptq; *dp++ = xxrc; } /* Repeat count */
  818.     if (xxss) { *dp++ = ebq; }            /* Single shift */
  819.     if (xxcq) { *dp++ = myctlq; }                /* Control prefix */
  820.     *dp++ = rt;            /* Finally, the character itself */
  821.  
  822.     if (rpt == 1) {            /* Exactly two copies? */
  823.         rpt = 0;
  824.         p2 = dp;            /* Save place temporarily */
  825.         for (p1 = odp2; p1 < p2; p1++) /* Copy the old chars over again */
  826.           *dp++ = *p1;
  827.         if ((p2-data) <= bufmax) odp = p2; /* Check packet bounds */
  828.     }
  829.     rt = rnext;            /* Next character is now current. */
  830.  
  831. /* Done encoding the character.  Now take care of packet buffer overflow. */
  832.  
  833.     if ((dp-data) >= bufmax) {    /* If too big, save some for next. */
  834.         size = (dp-data);        /* Calculate the size. */
  835.         *dp = '\0';            /* Mark the end. */
  836.         if ((dp-data) > bufmax) {    /* if packet is overfull */
  837.         /* copy the part that doesn't fit into the leftover buffer, */
  838.         /* taking care not to split a prefixed sequence. */
  839.         for (p1 = leftover, p2=odp; (*p1 = *p2) != '\0'; p1++,p2++)
  840.             ;
  841.         debug(F111,"getpkt leftover",leftover,size);
  842.         debug(F101," osize","",(odp-data));
  843.         size = (odp-data);    /* Return truncated packet. */
  844.         *odp = '\0';        /* Mark the new end */
  845.         }
  846.         t = rt; next = rnext;    /* save for next time */
  847.         return(size);
  848.     }
  849.     }                    /* Otherwise, keep filling. */
  850.  
  851.     size = (dp-data);            /* End of file */
  852.     *dp = '\0';                /* Mark the end of the data. */
  853.     debug(F111,"getpkt eof/eot",data,size); /* Fell thru before packet full, */
  854.     return(size);             /* return partially filled last packet. */
  855. }
  856.  
  857. /*  T I N I T  --  Initialize a transaction  */
  858.  
  859. int
  860. tinit() {
  861.     int x;
  862.  
  863. #ifndef NOCSETS
  864.     if (tcharset == TC_TRANSP) {    /* Character set translation */
  865.     rx = sx = NULL;            /* Transparent, no translation */
  866. #ifdef KANJI
  867.     } else if (tcharset == TC_JEUC) {
  868.     rx = sx = NULL;            /* Transparent, no translation */      
  869. #endif /* KANJI */
  870.     } else {                /* otherwise */
  871.     rx = xlr[tcharset][fcharset];    /* Input translation function */
  872.     sx = xls[tcharset][fcharset];    /* Output translation function */
  873.     }
  874.     debug(F101,"tinit tcharset","",tcharset);
  875.     debug(F101,"tinit fcharset","",fcharset);
  876. #ifdef COMMENT
  877.     debug(F101,"tinit sx   ","",sx);
  878.     debug(F101,"tinit rx   ","",rx);
  879. #endif /* COMMENT */
  880. #endif /* NOCSETS */
  881.     myinit[0] = '\0';            /* Haven't sent init string yet */
  882.     retrans = 0;            /* Packet retransmission count */
  883.     sndtyp = 0;                /* No previous packet */
  884.     xflg = 0;                /* Reset x-packet flag */
  885.     memstr = 0;                /* Reset memory-string flag */
  886.     memptr = NULL;            /*  and pointer */
  887.     bctu = bctl = 1;            /* Reset block check type to 1 */
  888.     autopar = 0;            /* Automatic parity detection flag */
  889.     rqf = -1;                /* Reset 8th-bit-quote request flag */
  890.     ebq = MYEBQ;            /* Reset 8th-bit quoting stuff */
  891.     ebqflg = 0;                /* 8th bit quoting not enabled */
  892.     ebqsent = 0;            /* No 8th-bit prefix bid sent yet */
  893.     sq = 'Y';                /* 8th-bit prefix bid I usually send */
  894.     if (savmod) {            /* If global file mode was saved, */
  895.         binary = savmod;        /*  restore it, */
  896.     savmod = 0;            /*  unsave it. */
  897.     }
  898.     pktnum = 0;                /* Initial packet number to send */
  899.     cxseen = czseen = discard = 0;    /* Reset interrupt flags */
  900.     *filnam = '\0';            /* Clear file name */
  901.     spktl = 0;                /* And its length */
  902.     nakstate = 0;            /* Assume not in a NAK'ing state */
  903.     numerrs = 0;            /* Transmission error counter */
  904.     if (server)             /* If acting as server, */
  905.       timint = srvtim;            /* Use server timeout interval. */
  906.     else                /* Otherwise */
  907.       timint = chktimo(rtimo,timef);    /* Begin by using local value */
  908.     spsiz = spsizr;            /* Initial send-packet size */
  909.     wslots = 1;                /* One window slot */
  910.     wslotn = 1;                /* No window negotiated yet */
  911.     winlo = 0;                /* Packet 0 is at window-low */
  912.     x = mksbuf(1);            /* Make a 1-slot send-packet buffer */
  913.     if (x < 0) return(x);
  914.     x = getsbuf(0);            /* Allocate first send-buffer. */
  915.     debug(F101,"tinit getsbuf","",x);
  916.     if (x < 0) return(x);
  917.     dumpsbuf();
  918.     x = mkrbuf(wslots);            /* & a 1-slot receive-packet buffer. */
  919.     if (x < 0) return(x);
  920.     what = W_NOTHING;            /* Doing nothing so far... */
  921.     lsstate = 0;            /* Initialize locking shift state */
  922.     return(0);
  923. }
  924.  
  925. VOID
  926. pktinit() {                /* Initialize packet sequence */
  927.     pktnum = 0;                /* number & window low. */
  928.     winlo = 0;
  929. }
  930.  
  931. /*  R I N I T  --  Respond to S or I packet  */
  932.  
  933. VOID
  934. rinit(d) CHAR *d; {
  935.     char *tp;
  936.     ztime(&tp);
  937.     tlog(F110,"Transaction begins",tp,0L); /* Make transaction log entry */
  938.     if (binary)
  939.       tlog(F100,"Global file mode = binary","",0L);
  940.     else
  941.       tlog(F100,"Global file mode = text","",0L);
  942.     filcnt = 0;                /* Init file counter */
  943.     spar(d);
  944.     ack1(rpar());
  945. #ifdef datageneral
  946.     if ((local) && (!quiet))            /* Only do this if local & not quiet */
  947.         consta_mt();                    /* Start the asynch read task */
  948. #endif /* datageneral */
  949. }
  950.  
  951.  
  952. /*  R E S E T C  --  Reset per-transaction character counters */
  953.  
  954. VOID
  955. resetc() {
  956.     rptn = 0;                /* Repeat counts */
  957.     fsecs = flci = flco = 0L;        /* File chars in and out */
  958.     tfc = tlci = tlco = 0L;        /* Total file, line chars in & out */
  959. #ifdef COMMENT
  960.     fsize = -1L;            /* File size */
  961. #else
  962.     if (what != W_SEND)
  963.       fsize = -1L;
  964.     debug(F101,"resetc fsize","",fsize);
  965. #endif /* COMMENT */
  966.     timeouts = retrans = 0;        /* Timeouts, retransmissions */
  967.     spackets = rpackets = 0;        /* Packet counts out & in */
  968.     crunched = 0;            /* Crunched packets */
  969.     wcur = 0;                /* Current window size */
  970.     wmax = 0;                /* Maximum window size used */
  971. }
  972.  
  973. /*  S I N I T  --  Get & verify first file name, then send Send-Init packet */
  974. /*
  975.  Returns:
  976.    1 if send operation begins successfully
  977.    0 if send operation fails
  978. */
  979. #ifdef DYNAMIC
  980. char *cmargbuf = NULL;
  981. #else
  982. char cmargbuf[256];
  983. #endif /* DYNAMIC */
  984. char *cmargp[2];
  985.  
  986. int
  987. sinit() {
  988.     int x;                /* Worker int */
  989.     char *tp, *xp, *m;            /* Worker string pointers */
  990.  
  991.     filcnt = 0;                /* Initialize file counter */
  992.     sndsrc = nfils;            /* Source for filenames */
  993. #ifdef DYNAMIC
  994.     if (!cmargbuf && !(cmargbuf = malloc(256)))
  995.     fatal("sinit: no memory for cmargbuf");
  996. #endif /* DYNAMIC */
  997.     cmargbuf[0] = NUL;            /* Initialize name buffer */
  998.  
  999.     debug(F101,"sinit nfils","",nfils);
  1000.     debug(F110,"sinit cmarg",cmarg,0);
  1001.     debug(F110,"sinit cmarg2",cmarg2,0);
  1002.     if (nfils == 0) {            /* Sending from stdin or memory. */
  1003.     if ((cmarg2 != NULL) && (*cmarg2)) {
  1004.         cmarg = cmarg2;        /* If F packet, "as-name" is used */
  1005.         cmarg2 = "";        /* if provided */
  1006.     } else cmarg = "stdin";        /* otherwise just use "stdin" */
  1007.     strcpy(cmargbuf,cmarg);
  1008.     cmargp[0] = cmargbuf;
  1009.     cmargp[1] = "";
  1010.     cmlist = cmargp;
  1011.     nfils = 1;
  1012.     }
  1013. #ifdef COMMENT
  1014.     if (nfils < 1) {            /* Filespec pointed to by cmarg */
  1015.     if (nfils < 0) sndsrc = 1;
  1016.     nfils = 1;            /* Change it to cmlist */
  1017.     strcpy(cmargbuf,cmarg);        /* so we have a consistent way */
  1018.     cmargp[0] = cmargbuf;        /* of going thru the file list. */
  1019.     cmargp[1] = "";
  1020.     cmlist = cmargp;
  1021.     }
  1022.  
  1023. /* At this point, cmlist contains the list of filespecs to send */
  1024.  
  1025.     debug(F111,"sinit *cmlist",*cmlist,nfils);
  1026.  
  1027.     xp = *cmlist;            /* Save this for messages */
  1028. #else
  1029.     xp = (nfils < 0) ? cmarg : *cmlist;
  1030. #endif
  1031.  
  1032.     x = gnfile();            /* Get first filename. */
  1033.     m = NULL;                /* Error message pointer */
  1034.     debug(F101,"sinit gnfil","",x);
  1035.     switch (x) {
  1036.       case -5: m = "Too many files match wildcard"; break;
  1037.       case -4: m = "Cancelled"; break;
  1038.       case -3: m = "Read access denied"; break;
  1039.       case -2: m = "File is not readable"; break;
  1040.       case -1: m = iswild(filnam) ? "No files match" : "File not found";
  1041.     break;
  1042.       case  0: m = "No filespec given!" ; break;
  1043.       default:
  1044.     break;
  1045.     }
  1046.     debug(F101,"sinit nfils","",nfils);
  1047.     debug(F110,"sinit filnam",filnam,0);
  1048.     debug(F110,"sinit cmdstr",cmdstr,0);
  1049.     if (x < 1) {            /* Didn't get a file. */
  1050.     if (server)            /* Doing GET command */
  1051.       errpkt((CHAR *)m);        /* so send Error packet. */
  1052.     else                /* Doing SEND command */
  1053.       screen(SCR_EM,0,0l,m);    /* so print message. */
  1054.     tlog(F110,xp,m,0L);        /* Make transaction log entry. */
  1055.     freerbuf(rseqtbl[0]);        /* Free the buffer the GET came in. */
  1056.     return(0);            /* Return failure code */
  1057.     }
  1058.     if (!local && !server) sleep(delay); /* Delay if requested */
  1059. #ifdef datageneral
  1060.     if ((local) && (!quiet))            /* Only do this if local & not quiet */
  1061.         consta_mt();                    /* Start the asynch read task */
  1062. #endif /* datageneral */
  1063.     freerbuf(rseqtbl[0]);        /* Free the buffer the GET came in. */
  1064.     sipkt('S');                /* Send the Send-Init packet. */
  1065.     ztime(&tp);                /* Get current date/time */
  1066.     tlog(F110,"Transaction begins",tp,0L); /* Make transaction log entry */
  1067.     debug(F111,"sinit ok",filnam,0);
  1068.     return(1);
  1069. }
  1070.  
  1071. int
  1072. #ifdef CK_ANSIC
  1073. sipkt(char c)                /* Send S or I packet. */
  1074. #else
  1075. sipkt(c) char c;
  1076. #endif
  1077. /* sipkt */ {
  1078.     CHAR *rp; int k;
  1079.     debug(F101,"sipkt pktnum","",pktnum);
  1080.     k = sseqtbl[pktnum];        /* Find slot for this packet */
  1081.     debug(F101,"sipkt k","",k);
  1082.     if (k < 0) {            /* No slot? */
  1083.     k = getsbuf(winlo = pktnum);    /* Make one. */
  1084.     debug(F101,"sipkt getsbuf","",k);    
  1085.     }
  1086.     ttflui();                /* Flush pending input. */
  1087.     rp = rpar();            /* Get protocol parameters. */
  1088.     return(spack(c,pktnum,(int)strlen((char *)rp),rp)); /* Send them. */
  1089. }
  1090.  
  1091. /*  X S I N I T  --  Retransmit S-packet  */
  1092. /*
  1093.   For use in the GET-SEND sequence, when we start to send, but receive another
  1094.   copy of the GET command because the receiver didn't get our S packet.
  1095.   This retransmits the S packet and frees the receive buffer for the ACK.
  1096.   The only reason this special case is necessary is that packet number zero
  1097.   is being re-used.
  1098. */
  1099. VOID
  1100. xsinit() {
  1101.     int k;    
  1102.     k = rseqtbl[0];
  1103.     debug(F101,"xsinit k","",k);
  1104.     if (k > -1)
  1105.       freerbuf(k);
  1106.     resend(0);
  1107. }        
  1108.  
  1109. /*  R C V F I L -- Receive a file  */
  1110.  
  1111. /*
  1112.   Incoming filename is in data field of F packet.
  1113.   This function decodes it into the srvcmd buffer, substituting an
  1114.   alternate "as-name", if one was given.
  1115.   Then it does any requested transformations (like converting to
  1116.   lowercase), and finally if a file of the same name already exists, 
  1117.   takes the desired collision action.
  1118. */
  1119. #ifdef pdp11
  1120. #define XNAMLEN 65
  1121. #else
  1122. #define XNAMLEN 256
  1123. #endif /* pdp11 */
  1124.  
  1125. int
  1126. rcvfil(n) char *n; {
  1127.     char xname[XNAMLEN], *xp;        /* Buffer for constructing name */
  1128. #ifdef DTILDE
  1129.     char *dirp, *tilde_expand();
  1130. #endif /* DTILDE */
  1131.  
  1132.     lsstate = 0;            /* Cancel locking-shift state */
  1133.     srvptr = srvcmd;            /* Decode file name from packet. */
  1134.     decode(rdatap,putsrv,0);        /* Don't xlate charsets. */
  1135.     if (*srvcmd == '\0')        /* Watch out for null F packet. */
  1136.       strcpy((char *)srvcmd,"NONAME");
  1137. #ifdef DTILDE
  1138.     dirp = tilde_expand((char *)srvcmd); /* Expand tilde, if any. */
  1139.     if (*dirp != '\0') strcpy((char *)srvcmd,dirp);
  1140. #endif /* DTILDE */
  1141.     screen(SCR_FN,0,0l,(char *)srvcmd);    /* Put it on screen if local */
  1142.     debug(F110,"rcvfil",(char *)srvcmd,0); /* Debug log entry */
  1143.     debug(F101,"rcvfil cmarg2","",cmarg2);
  1144.     tlog(F110,"Receiving",(char *)srvcmd,0L); /* Transaction log entry */
  1145.     if (cmarg2 != NULL) {               /* Check for alternate name */
  1146.         if (*cmarg2 != '\0') {
  1147.             strcpy((char *)srvcmd,cmarg2); /* Got one, use it. */
  1148.         }
  1149.     } else cmarg2 = "";
  1150. /*
  1151.   NOTE: Much of this code should be moved to opena(), where the file is
  1152.   actually opened, AFTER we have received the Attribute packet(s).  That
  1153.   way, if the file is mail, or is being sent to the printer, we don't have
  1154.   to fuss with collision options, etc, but instead we just pipe the data
  1155.   straight into lpr or mail (in UNIX anyway), and then we can also have
  1156.   nice subject lines for mail messages by using whatever is in the file
  1157.   header packet data field, whether it's a legal filename or not.
  1158. */
  1159.     if ((int)strlen((char *)srvcmd) > XNAMLEN) /* Watch out for overflow */
  1160.       *(srvcmd + XNAMLEN - 1) = NUL;
  1161.  
  1162.     xp = xname;                /* OK to proceed. */
  1163.     if (fncnv && !*cmarg2)
  1164.       zrtol((char *)srvcmd,xp);        /* convert name to local form */
  1165.     else                /* otherwise, */
  1166.       strcpy(xname,(char *)srvcmd);    /* use it literally */
  1167.     cmarg2 = "";            /* Remove alternate name */
  1168.     debug(F110,"rcvfil as",xname,0);
  1169.  
  1170. #ifdef COMMENT                /* Old code... */
  1171.     if (warn) {                /* File collision avoidance? */
  1172.     if (zchki(xname) != -1) {    /* Yes, file exists? */
  1173.         znewn(xname,&xp);        /* Yes, make new name. */
  1174.         strcpy(xname,xp);
  1175.         debug(F110," exists, new name ",xname,0);
  1176.         }
  1177.     }
  1178. #endif /* COMMENT */
  1179.  
  1180. /* Filename collision action section. */
  1181.  
  1182.     if (
  1183. #ifdef UNIX
  1184.     strcmp(xname,"/dev/null") &&    /* It's not the null device? */
  1185. #endif /* UNIX */
  1186.     !stdouf &&            /* Sending file to standard output? */
  1187.     (zchki(xname) != -1)        /* File of same name exists? */
  1188.     ) {                
  1189.     debug(F111,"rcvfil exists",xname,fncact);
  1190.     switch (fncact) {        /* Yes, do what user said. */
  1191.       case XYFX_A:            /* Append */
  1192.         debug(F100,"rcvfil append","",0);
  1193.         break;
  1194.       case XYFX_Q:            /* Query (Ask) */
  1195.         break;            /* not yet implemented */
  1196.       case XYFX_B:            /* Backup (rename old file) */
  1197.         znewn(xname,&xp);        /* Get new unique name */
  1198.         debug(F110,"rcvfil backup",xname,0);
  1199.         debug(F110,"rcvfil backup",xp,0);
  1200.         if (zrename(xname,xp) < 0) {
  1201.         debug(F110,"rcvfil rename fails",xname,0);
  1202.         return(0);
  1203.         }
  1204.         break;
  1205.       case XYFX_D:            /* Discard (refuse new file) */
  1206.         discard = 1;
  1207.         debug(F101,"rcvfil discard","",discard);
  1208.         break;            /* not yet implemented */
  1209.       case XYFX_R:            /* Rename new file */
  1210.         znewn(xname,&xp);        /* Make new name. */
  1211.         strcpy(xname,xp);
  1212.         debug(F110,"rcvfil rename",xname,0);
  1213.       case XYFX_X:            /* Replace old file */
  1214.         debug(F100,"rcvfil overwrite","",0);
  1215.         break;
  1216.       case XYFX_U:            /* Refuse if older */
  1217.         debug(F100,"rcvfil update","",0);
  1218.         break;            /* Not here, we don't have */
  1219.                     /* the attribute packet yet. */
  1220.       default:
  1221.         debug(F101,"rcvfil bad collision action","",fncact);
  1222.         break;
  1223.     }
  1224.     }
  1225.     debug(F110,"rcvfil: xname",xname,0);
  1226.     screen(SCR_AN,0,0l,xname);        /* Display it */
  1227.     strcpy(n,xname);            /* Return pointer to actual name. */
  1228.  
  1229. #ifndef NOICP
  1230. #ifndef MAC
  1231. /* Why not Mac? */
  1232.     strcpy(fspec,xname);        /* Here too for \v(filespec) */
  1233. #endif /* MAC */
  1234. #endif /* NOICP */
  1235.     debug(F110,"rcvfil: n",n,0);
  1236.     ffc = 0L;                /* Init per-file counters */
  1237.     fsecs = gtimer();            /* Time this file started */
  1238.     filcnt++;
  1239.     intmsg(filcnt);
  1240.     return(1);                /* Always succeeds */
  1241. }
  1242.  
  1243.  
  1244. /*  R E O F  --  Receive End Of File packet for incoming file */
  1245.  
  1246. /*
  1247.   Closes the received file.
  1248.   Returns:
  1249.     0 on success.
  1250.    -1 if file could not be closed.
  1251.     2 if disposition was mail, mail was sent, but temp file not deleted.
  1252.     3 if disposition was print, file was printed, but not deleted.
  1253.    -2 if disposition was mail and mail could not be sent
  1254.    -3 if disposition was print and file could not be printed
  1255. */
  1256. int
  1257. reof(f,yy) char *f; struct zattr *yy; {
  1258.     int x;
  1259.     char *p;
  1260.     char c;
  1261.  
  1262.     debug(F111,"reof fncact",f,fncact);
  1263.     debug(F101,"reof discard","",discard);
  1264.     success = 1;            /* Assume status is OK */
  1265.     lsstate = 0;            /* Cancel locking-shift state */
  1266.     if (
  1267. #ifdef COMMENT
  1268. /*
  1269.   If the discard flag is set, for whatever reason, we discard it, right?
  1270. */
  1271.     (fncact == XYFX_D || fncact == XYFX_U) &&
  1272. #endif /* COMMENT */
  1273.     discard != 0) {       /* SET FILE COLLISION DISCARD or UPDATE */
  1274.  
  1275.     debug(F101,"reof discarding","",0);
  1276.     discard = 0;            /* We never opened it, */
  1277.     return(0);            /* so we won't close it. */
  1278.     }
  1279.     if (cxseen == 0) cxseen = (*rdatap == 'D');    /* Got cancel directive? */
  1280.     success = (cxseen || czseen) ? 0 : 1; /* Set SUCCESS flag appropriately */
  1281.     x = clsof(cxseen || czseen);    /* Close the file (resets cxseen) */
  1282.     if (x < 0) success = 0;        /* If failure to close, FAIL */
  1283.     if (success && atcapu) zstime(f,yy,0); /* Set file creation date */
  1284.     if (success == 0) xitsta |= W_RECV;    /* And program return code */
  1285.  
  1286. /* Handle dispositions from attribute packet... */
  1287.  
  1288. #ifndef NOFRILLS
  1289.     if (yy->disp.len != 0) {
  1290.     p = yy->disp.val;
  1291.     c = *p++;
  1292.     if (c == 'M') {            /* Mail to user. */
  1293.         x = zmail(p,filnam);    /* Do the system's mail command */
  1294.         if (x < 0) success = 0;    /* Remember status */
  1295.         tlog(F110,"mailed",filnam,0L);
  1296.         tlog(F110," to",p,0L);
  1297.         zdelet(filnam);        /* Delete the file */
  1298.     } else if (c == 'P') {        /* Print the file. */
  1299.         x = zprint(p,filnam);    /* Do the system's print command */
  1300.         if (x < 0) success = 0;    /* Remember status */
  1301.         tlog(F110,"printed",filnam,0L);
  1302.         tlog(F110," with options",p,0L);
  1303. #ifndef VMS
  1304.         if (zdelet(filnam) && x == 0) x = 3; /* Delete the file */
  1305. #endif /* VMS */
  1306.     }
  1307.     }
  1308. #endif /* NOFRILLS */
  1309.     debug(F101,"reof returns","",x);
  1310.     *filnam = '\0';
  1311.     return(x);
  1312. }
  1313.  
  1314. /*  R E O T  --  Receive End Of Transaction  */
  1315.  
  1316. VOID
  1317. reot() {
  1318.     cxseen = czseen = discard = 0;    /* Reset interruption flags */
  1319.     tstats();
  1320. }
  1321.  
  1322. /*  S F I L E -- Send File header or teXt header packet  */
  1323.  
  1324. /*  Call with x nonzero for X packet, zero for F packet  */
  1325. /*  Returns 1 on success, 0 on failure                   */
  1326.  
  1327. int
  1328. sfile(x) int x; {
  1329. #ifdef pdp11
  1330. #define PKTNL 64
  1331. #else
  1332. #define PKTNL 256
  1333. #endif /* pdp11 */
  1334.     char pktnam[PKTNL+1];        /* Local copy of name */
  1335.     char *s;
  1336.  
  1337.     lsstate = 0;            /* Cancel locking-shift state */
  1338.     if (nxtpkt() < 0) return(0);    /* Bump packet number, get buffer */
  1339.     if (x == 0) {            /* F-Packet setup */
  1340.  
  1341.         if (*cmarg2 != '\0') {        /* If we have a send-as name, */
  1342.         strncpy(pktnam,cmarg2,PKTNL); /* copy it literally, */
  1343.         cmarg2 = "";        /* and blank it out for next time. */
  1344.         } else {            /* Otherwise use actual file name: */
  1345.         if (fncnv) {        /* If converting names, */
  1346.             zltor(filnam,pktnam);    /* convert it to common form, */
  1347.         } else {            /* otherwise, */
  1348.             strncpy(pktnam,filnam,PKTNL); /* copy it literally. */
  1349.             }
  1350.         }
  1351.         debug(F110,"sfile",filnam,0);    /* Log debugging info */
  1352.         debug(F110," pktnam",pktnam,0);
  1353.         if (openi(filnam) == 0)     /* Try to open the file */
  1354.       return(0);         
  1355.         s = pktnam;            /* Name for packet data field */
  1356.  
  1357.     } else {                /* X-packet setup */
  1358.  
  1359.         debug(F110,"sxpack",cmdstr,0);    /* Log debugging info */
  1360.         s = cmdstr;            /* Name for data field */
  1361.     }
  1362.  
  1363.     encstr((CHAR *)s);            /* Encode the name into encbuf[]. */
  1364.                     /* Send the F or X packet */
  1365.     spack((char) (x ? 'X' : 'F'), pktnum, size, encbuf+7);
  1366.  
  1367.     if (x == 0) {            /* Display for F packet */
  1368.         if (displa) {            /* Screen */
  1369.         screen(SCR_FN,'F',(long)pktnum,filnam);
  1370.         screen(SCR_AN,0,0l,pktnam);
  1371.         screen(SCR_FS,0,fsize,"");
  1372.         }
  1373.         tlog(F110,"Sending",filnam,0L);    /* Transaction log entry */
  1374.         tlog(F110," as",pktnam,0L);
  1375.     if (binary) {            /* Log file mode in transaction log */
  1376.         tlog(F101," mode: binary","",(long) binary);
  1377.     } else {            /* If text mode, check character set */
  1378.         tlog(F100," mode: text","",0L);
  1379. #ifndef NOCSETS
  1380.         tlog(F110," file character set",fcsinfo[fcharset].name,0L);
  1381.         if (tcharset == TC_TRANSP)
  1382.           tlog(F110," xfer character set","transparent",0L);
  1383.         else
  1384.           tlog(F110," xfer character set",tcsinfo[tcharset].name,0L);
  1385. #endif /* NOCSETS */
  1386.     }
  1387.     } else {                /* Display for X-packet */
  1388.  
  1389.         screen(SCR_XD,'X',(long)pktnum,cmdstr);    /* Screen */
  1390.         tlog(F110,"Sending from:",cmdstr,0L);    /* Transaction log */
  1391.     }
  1392.     intmsg(++filcnt);            /* Count file, give interrupt msg */
  1393.     first = 1;                /* Init file character lookahead. */
  1394.     ffc = 0L;                /* Init file character counter. */
  1395.     fsecs = gtimer();            /* Time this file started */
  1396.     debug(F101,"SFILE fsecs","",fsecs);
  1397.     return(1);
  1398. }
  1399.  
  1400. /*  S D A T A -- Send a data packet */
  1401.  
  1402. /*
  1403.   Returns -1 if no data to send (end of file).  If there is data, a data
  1404.   packet is sent, and sdata() returns 1.
  1405.  
  1406.   For window size greater than 1, keep sending data packets until window
  1407.   is full or characters start to appear from the other Kermit, whichever
  1408.   happens first.
  1409.  
  1410.   In the windowing case, when there is no more data left to send (or when
  1411.   sending has been interrupted), sdata() does nothing and returns 0 each time
  1412.   it is called until the current packet number catches up to the last data
  1413.   packet that was sent.
  1414. */
  1415.  
  1416. int
  1417. sdata() {
  1418.     int i, x, len;
  1419.     
  1420.     debug(F101,"sdata entry, first","",first);
  1421.     debug(F101," drain","",drain);
  1422.  
  1423. /* The "drain" flag is used with window size > 1.  It means we have sent  */
  1424. /* our last data packet.  If called and drain is not zero, then we return */
  1425. /* 0 as if we had sent an empty data packet, until all data packets have  */
  1426. /* been ACK'd, then then we can finally return -1 indicating EOF, so that */
  1427. /* the protocol can switch to seof state.  This is a kludge, but at least */
  1428. /* it's localized...  */
  1429.  
  1430.     if (first == 1) drain = 0;        /* Start of file, init drain flag. */
  1431.  
  1432.     if (drain) {            /* If draining... */
  1433.     debug(F101,"sdata draining, winlo","",winlo);
  1434.     if (winlo == pktnum)        /* If all data packets are ACK'd */
  1435.       return(-1);            /* return EOF indication */
  1436.     else                /* otherwise */
  1437.       return(0);            /* pretend we sent a data packet. */
  1438.     }
  1439.     debug(F101,"sdata sbufnum","",sbufnum);
  1440.     for (i = sbufnum; i > 0; i--) {
  1441.         debug(F101,"sdata countdown","",i);
  1442.     x = nxtpkt();            /* Get next pkt number and buffer */
  1443.     debug(F101,"sdata packet","",pktnum);
  1444.     if (x < 0) return(0);
  1445. /***    dumpsbuf(); */
  1446.     if (cxseen || czseen) {        /* If interrupted, done. */
  1447.         if (wslots > 1) {
  1448.         drain = 1;
  1449.         debug(F101,"sdata cx/zseen, drain","",cxseen);
  1450.         return(0);
  1451.         } else {
  1452.         return(-1);
  1453.         }
  1454.     }
  1455. #ifdef COMMENT
  1456.     if (spsiz > 94)            /* Fill the packet's data buffer */
  1457.       len = getpkt(spsiz-bctl-6,1);    /* long packet */
  1458.     else                /*  or */
  1459.       len = getpkt(spsiz-bctl-3,1);    /* short packet */
  1460. #else
  1461.     len = getpkt(spsiz,1);
  1462. #endif /* COMMENT */
  1463.     if (len == 0) {            /* Done if no data. */
  1464.         if (pktnum == winlo) return(-1);
  1465.         drain = 1;            /* But can't return -1 until all */
  1466.         debug(F101,"sdata eof, drain","",drain);
  1467.         return(0);            /* ACKs are drained. */
  1468.     }
  1469.     spack('D',pktnum,len,data);    /* Send the data packet. */
  1470.     x = ttchk();            /* Peek at input buffer. */
  1471.     debug(F101,"sdata ttchk","",x);    /* ACKs waiting, maybe?  */
  1472.     if (x) return(1);        /* Yes, stop sending data packets */
  1473.     }                    /* and go try to read the ACKs. */
  1474.     return(1);
  1475. }
  1476.  
  1477.  
  1478. /*  S E O F -- Send an End-Of-File packet */
  1479.  
  1480. /*  Call with a string pointer to character to put in the data field, */
  1481. /*  or else a null pointer or "" for no data.  */
  1482.  
  1483. /*
  1484.   There are two "send-eof" functions.  seof() is used to send the normal eof
  1485.   packet at the end of a file's data (even if the file has no data), or when
  1486.   a file transfer is interrupted.  sxeof() is used to send an EOF packet that
  1487.   occurs because of attribute refusal.  The difference is purely a matter of
  1488.   buffer allocation and packet sequence number management.  Both functions
  1489.   act as "front ends" to the common send-eof function, szeof().
  1490. */
  1491.  
  1492. /* Code common to both seof() and sxeof() */
  1493.  
  1494. int
  1495. szeof(s) CHAR *s; {
  1496.     lsstate = 0;            /* Cancel locking-shift state */
  1497.     if ((s != NULL) && (*s != '\0')) {
  1498.     spack('Z',pktnum,1,s);
  1499.     xitsta |= W_SEND;
  1500.     tlog(F100," *** interrupted, sending discard request","",0L);
  1501.     } else {
  1502.     spack('Z',pktnum,0,(CHAR *)"");
  1503.     }
  1504.     discard = 0;            /* Turn off per-file discard flag */
  1505.     return(0);
  1506. }
  1507.  
  1508. int
  1509. seof(s) CHAR *s; {
  1510.  
  1511. /*
  1512.   ckcpro.w, before calling seof(), sets window size back to 1 and then calls
  1513.   window(), which clears out the old buffers.  This is OK because the final
  1514.   data packet for the file has been ACK'd.  However, sdata() has already
  1515.   called nxtpkt(), which set the new value of pktnum which seof() will use.
  1516.   So all we need to do here is is allocate a new send-buffer.
  1517. */
  1518.     if (getsbuf(pktnum) < 0) {    /* Get a buffer for packet n */
  1519.     debug(F101,"seof can't get s-buffer","",pktnum);
  1520.     return(-1);
  1521.     }
  1522.     return(szeof(s));
  1523. }
  1524.  
  1525. /*
  1526.   Version of seof() to be called when sdata() has not been called before.  The
  1527.   difference is that this version calls nxtpkt() to allocate a send-buffer and
  1528.   get the next packet number.
  1529. */
  1530. int
  1531. sxeof(s) CHAR *s; {
  1532.     int x;
  1533.     x = nxtpkt();            /* Get next pkt number and buffer */
  1534.     if (x < 0)
  1535.       debug(F101,"sxeof nxtpkt fails","",pktnum);
  1536.     else
  1537.       debug(F101,"sxeof packet","",pktnum);
  1538.     return(szeof(s));
  1539. }
  1540.  
  1541. /*  S E O T -- Send an End-Of-Transaction packet */
  1542.  
  1543. int
  1544. seot() {
  1545.     if (nxtpkt() < 0) return(-1);    /* Bump packet number, get buffer */
  1546.     spack('B',pktnum,0,(CHAR *)"");    /* Send the EOT packet */
  1547.     cxseen = czseen = discard = 0;    /* Reset interruption flags */
  1548.     tstats();                /* Log timing info */
  1549.     return(0);
  1550. }
  1551.  
  1552. /*   R P A R -- Fill the data array with my send-init parameters  */
  1553.  
  1554.  
  1555. CHAR dada[20];                /* Use this instead of data[]. */
  1556.                     /* To avoid some kind of wierd */
  1557.                     /* addressing foulup in spack()... */
  1558.                     /* (which might be fixed now...) */
  1559.  
  1560. CHAR *
  1561. rpar() {
  1562.     int x;
  1563.     if (rpsiz > MAXPACK)        /* Biggest normal packet I want. */
  1564.       dada[0] = tochar(MAXPACK);    /* If > 94, use 94, but specify */
  1565.     else                /* extended packet length below... */
  1566.       dada[0] = tochar(rpsiz);        /* else use what the user said. */
  1567.     dada[1] = tochar(chktimo(pkttim,0)); /* When I want to be timed out */
  1568.     dada[2] = tochar(mypadn);        /* How much padding I need (none) */
  1569.     dada[3] = ctl(mypadc);        /* Padding character I want */
  1570.     dada[4] = tochar(eol);        /* End-Of-Line character I want */
  1571.     dada[5] = myctlq;            /* Control-Quote character I send */
  1572.  
  1573.     switch (rqf) {            /* 8th-bit prefix (single-shift) */
  1574.       case -1:                /* I'm opening the bids */
  1575.       case  1:                /* Other Kermit already bid 'Y' */
  1576.     if (parity) ebq = sq = MYEBQ ;    /* So I reply with '&' if parity */
  1577.     break;                /*  otherwise with 'Y'. */
  1578.       case  0:                /* Other Kermit bid nothing */
  1579.       case  2:                /* Other Kermit sent a valid prefix */
  1580.     break;                /* So I reply with 'Y'. */
  1581.     }
  1582.     debug(F000,"rpar 8bq sq","",sq);
  1583.     debug(F000,"rpar 8bq ebq","",ebq);
  1584.     if (lscapu == 2)            /* LOCKING-SHIFT FORCED */
  1585.       dada[6] = 'N';            /* requires no single-shift */
  1586.     else                /* otherwise send prefix or 'Y' */
  1587.       dada[6] = sq;
  1588.     ebqsent = dada[6];            /* And remember what I really sent */
  1589.  
  1590.     dada[7] = (bctr == 4) ? 'B' : bctr + '0'; /* Block check type */
  1591.     if (rptena) {
  1592.     if (rptflg)            /* Run length encoding */
  1593.       dada[8] = rptq;        /* If receiving, agree */
  1594.     else                /* by replying with same character. */
  1595.       dada[8] = rptq = myrptq;    /* When sending use this. */
  1596.     } else dada[8] = SP;        /* Not enabled, put a space here. */
  1597.  
  1598.     /* CAPAS mask */
  1599.  
  1600.     dada[9] = tochar((lscapr ? lscapb : 0) | /* Locking shifts */
  1601.              (atcapr ? atcapb : 0) | /* Attribute packets */
  1602.              (lpcapr ? lpcapb : 0) | /* Long packets */
  1603.              (swcapr ? swcapb : 0)); /* Sliding windows */
  1604.     dada[10] = tochar(swcapr ? wslotr : 1);  /* Window size */
  1605.     if (urpsiz > 94)
  1606.       rpsiz = urpsiz - 1;        /* Long packets ... */
  1607.     dada[11] = tochar(rpsiz / 95);    /* Long packet size, big part */
  1608.     dada[12] = tochar(rpsiz % 95);    /* Long packet size, little part */
  1609.     dada[13] = '\0';            /* Terminate the init string */
  1610. #ifdef DEBUG
  1611.     if (deblog) {
  1612.     debug(F110,"rpar",dada,0);
  1613.     rdebu(dada,(int)strlen((char *)dada));
  1614.     }
  1615. #endif /* DEBUG */
  1616.     strcpy((char *)myinit,(char *)dada);
  1617.     return(dada);            /* Return pointer to string. */
  1618. }
  1619.  
  1620. int
  1621. spar(s) CHAR *s; {            /* Set parameters */
  1622.     int x, y, lpsiz;
  1623.  
  1624.     debug(F110,"entering spar",s,0);
  1625.  
  1626.     s--;                /* Line up with field numbers. */
  1627.  
  1628. /* Limit on size of outbound packets */
  1629.     x = (rln >= 1) ? xunchar(s[1]) : 80;
  1630.     lpsiz = spsizr;            /* Remember what they SET. */
  1631.     if (spsizf) {            /* SET-command override? */
  1632.     if (x < spsizr) spsiz = x;    /* Ignore LEN unless smaller */
  1633.     } else {                /* otherwise */
  1634.     spsiz = (x < 10) ? 80 : x;    /* believe them if reasonable */
  1635.     }
  1636.     spmax = spsiz;            /* Remember maximum size */
  1637.  
  1638. /* Timeout on inbound packets */
  1639.     if (timef) {
  1640.     timint = rtimo;            /* SET SEND TIMEOUT value overrides */
  1641.     } else {                /* Otherwise use requested value, */
  1642.     x = (rln >= 2) ? xunchar(s[2]) : rtimo; /* if it is legal. */
  1643.     timint = (x < 0) ? rtimo : x;
  1644.     }
  1645.     timint = chktimo(timint,timef);    /* Adjust if necessary */
  1646.  
  1647. /* Outbound Padding */
  1648.     npad = 0; padch = '\0';
  1649.     if (rln >= 3) {
  1650.     npad = xunchar(s[3]);
  1651.     if (rln >= 4) padch = ctl(s[4]); else padch = 0;
  1652.     }
  1653.     if (npad) {
  1654.     int i;
  1655.     for (i = 0; i < npad; i++) padbuf[i] = dopar(padch);
  1656.     }
  1657.  
  1658. /* Outbound Packet Terminator */
  1659.     seol = (rln >= 5) ? xunchar(s[5]) : CR;
  1660.     if ((seol < 1) || (seol > 31)) seol = CR;
  1661.  
  1662. /* Control prefix that the other Kermit is sending */
  1663.     x = (rln >= 6) ? s[6] : '#';
  1664.     ctlq = ((x > 32 && x < 63) || (x > 95 && x < 127)) ? x : '#';
  1665.  
  1666. /* 8th-bit prefix */
  1667. /*
  1668.   NOTE: Maybe this could be simplified using rcvtyp.
  1669.   If rcvtyp == 'Y' then we're reading the ACK,
  1670.   otherwise we're reading the other Kermit's initial bid.
  1671.   But his horrendous code works, so leave it alone for now.
  1672. */
  1673.     rq = (rln >= 7) ? s[7] : 0;
  1674.     if (rq == 'Y') rqf = 1;
  1675.       else if ((rq > 32 && rq < 63) || (rq > 95 && rq < 127)) rqf = 2;
  1676.         else rqf = 0;
  1677.     debug(F000,"spar 8bq rq","",rq);
  1678.     debug(F000,"spar 8bq sq","",sq);
  1679.     debug(F000,"spar 8bq ebq","",ebq);
  1680.     debug(F101,"spar 8bq rqf","",rqf);
  1681.     switch (rqf) {
  1682.       case 0:                /* Field is missing from packet. */
  1683.     ebqflg = 0;            /* So no 8th-bit prefixing. */
  1684.     break;
  1685.       case 1:                /* Other Kermit sent 'Y' = Will Do. */
  1686.     /*
  1687.           When I am the file receiver, ebqsent is 0 because I didn't send a
  1688.           negotiation yet.  If my parity is set to anything other than NONE,
  1689.           either because my user SET PARITY or because I detected parity bits
  1690.           on this packet, I reply with '&', otherwise 'Y'.
  1691.  
  1692.       When I am the file sender, ebqsent is what I just sent in rpar(),
  1693.           which can be 'Y', 'N', or '&'.  If I sent '&', then this 'Y' means
  1694.           the other Kermit agrees to do 8th-bit prefixing.
  1695.  
  1696.           If I sent 'Y' or 'N', but then detected parity on the ACK packet
  1697.           that came back, then it's too late: there is no longer any way for
  1698.           me to tell the other Kermit that I want to do 8th-bit prefixing, so
  1699.           I must not do it, and in that case, if there is any 8-bit data in 
  1700.           the file to be transferred, the transfer will fail because of block
  1701.           check errors.
  1702.  
  1703.           The following clause covers all of these situations:
  1704.     */
  1705.     if (parity && (ebqsent == 0 || ebqsent == '&')) {
  1706.         ebqflg = 1;
  1707.         ebq = MYEBQ;
  1708.     }
  1709.     break;
  1710.       case 2:                /* Other Kermit send a valid prefix */
  1711.     if (ebqflg = (ebq == sq || sq == 'Y'))
  1712.       ebq = rq;
  1713.     }
  1714.     if (lscapu == 2) {     /* But no single-shifts if LOCKING-SHIFT FORCED */
  1715.     ebqflg = 0;
  1716.     ebq = 'N';
  1717.     }
  1718.  
  1719. /* Block check */
  1720.     x = 1;
  1721.     if (rln >= 8) {
  1722.     if (s[8] == 'B') x = 4;
  1723.     else x = s[8] - '0';
  1724.     if ((x < 1) || (x > 4)) x = 1;
  1725.     }
  1726.     bctr = x;
  1727.  
  1728. /* Repeat prefix */
  1729.  
  1730.     rptflg = 0;                /* Assume no repeat-counts */
  1731.     if (rln >= 9) {            /* Is there a repeat-count field? */
  1732.     char t;                /* Yes. */
  1733.     t = s[9];            /* Get its contents. */
  1734. /*
  1735.   If I'm sending files, then I'm reading these parameters from an ACK, and so
  1736.   this character must agree with what I sent.
  1737. */
  1738.     if (rptena) {            /* If enabled ... */
  1739.         if ((char) rcvtyp == 'Y') {    /* Sending files, reading ACK. */
  1740.         if (t == myrptq) rptflg = 1;
  1741.         } else {            /* I'm receiving files */
  1742.         if ((t > 32 && t < 63) || (t > 95 && t < 127)) {
  1743.             rptflg = 1;
  1744.             rptq = t;
  1745.         }
  1746.         }
  1747.     } else rptflg = 0;
  1748.     }
  1749.  
  1750. /* Capabilities */
  1751.  
  1752.     atcapu = lpcapu = swcapu = 0;    /* Assume none of these */
  1753.     if (lscapu != 2) lscapu = 0;    /* Assume no LS unless forced. */
  1754.     y = 11;                /* Position of next field, if any */
  1755.     if (rln >= 10) {
  1756.         x = xunchar(s[10]);
  1757.     debug(F101,"spar capas","",x);
  1758.         atcapu = (x & atcapb) && atcapr;
  1759.     lpcapu = (x & lpcapb) && lpcapr;
  1760.     swcapu = (x & swcapb) && swcapr;
  1761.     debug(F101,"spar lscapu","",lscapu);
  1762.     debug(F101,"spar lscapr","",lscapr);
  1763.     debug(F101,"spar ebqflg","",ebqflg);
  1764.     if (lscapu != 2) lscapu = ((x & lscapb) && lscapr && ebqflg) ? 1 : 0;
  1765.     debug(F101,"spar swcapr","",swcapr);
  1766.     debug(F101,"spar swcapu","",swcapu);
  1767.     debug(F101,"spar lscapu","",lscapu);
  1768.     for (y = 10; (xunchar(s[y]) & 1) && (rln >= y); y++) ;
  1769.     debug(F101,"spar y","",y);
  1770.     }
  1771.  
  1772. /* Long Packets */
  1773.     debug(F101,"spar lpcapu","",lpcapu);
  1774.     if (lpcapu) {
  1775.         if (rln > y+1) {
  1776.         x = xunchar(s[y+2]) * 95 + xunchar(s[y+3]);
  1777.         debug(F101,"spar lp len","",x);
  1778.         if (spsizf) {        /* If overriding negotiations */
  1779.         spsiz = (x < lpsiz) ? x : lpsiz; /* do this, */
  1780.         } else {                     /* otherwise */
  1781.         spsiz = (x > MAXSP) ? MAXSP : x; /* do this. */
  1782.         }
  1783.         if (spsiz < 10) spsiz = 80;    /* Be defensive... */
  1784.     }
  1785.     }
  1786.     /* (PWP) save current send packet size for optimal packet size calcs */
  1787.     spmax = spsiz;
  1788.     debug(F101,"spar lp spmax","",spmax);
  1789.     timint = chktimo(timint,timef);    /* Recalculate the packet timeout! */
  1790.     
  1791. /* Sliding Windows... */
  1792.  
  1793.     if (swcapr) {            /* Only if requested... */
  1794.         if (rln > y) {            /* See what other Kermit says */
  1795.         x = xunchar(s[y+1]);
  1796.         debug(F101,"spar window","",x);
  1797.         wslotn = (x > MAXWS) ? MAXWS : x;
  1798. /*
  1799.   wslotn = negotiated size (from other Kermit's S or I packet).
  1800.   wslotr = requested window size (from this Kermit's SET WINDOW command).
  1801. */
  1802.         if (wslotn > wslotr)    /* Use the smaller of the two */
  1803.           wslotn = wslotr;
  1804.         if (wslotn < 1)        /* Watch out for bad negotiation */
  1805.           wslotn = 1;
  1806.         if (wslotn > 1) {
  1807.         swcapu = 1;        /* We do windows... */
  1808.         if (wslotn > maxtry)    /* Retry limit must be greater */
  1809.           maxtry = wslotn + 1;    /* than window size. */
  1810.         }
  1811.         debug(F101,"spar window after adjustment","",x);
  1812.     } else {            /* No window size specified. */
  1813.         wslotn = 1;            /* We don't do windows... */
  1814.         debug(F101,"spar window","",x);
  1815.         swcapu = 0;
  1816.         debug(F101,"spar no windows","",wslotn);
  1817.     }
  1818.     }
  1819.  
  1820. /* Now recalculate packet length based on number of windows.   */
  1821. /* The nogotiated number of window slots will be allocated,    */
  1822. /* and the maximum packet length will be reduced if necessary, */
  1823. /* so that a windowful of packets can fit in the big buffer.   */
  1824.  
  1825.     if (wslotn > 1) {            /* Shrink to fit... */
  1826.     x = adjpkl(spsiz,wslotn,bigsbsiz);
  1827.     if (x < spsiz) {
  1828.         spsiz = spmax = x;
  1829.         debug(F101,"spar sending, redefine spsiz","",spsiz);
  1830.     }
  1831.     }
  1832.  
  1833. /* Record parameters in debug log */
  1834. #ifdef DEBUG
  1835.     if (deblog) sdebu(rln);
  1836. #endif /* DEBUG */
  1837.     numerrs = 0;            /* Start counting errors here. */
  1838.     return(0);
  1839. }
  1840.  
  1841. /*  G N F I L E  --  Get name of next file to send  */
  1842. /*
  1843.   Expects global sndsrc to be:
  1844.    -1: next filename to be obtained by calling znext().
  1845.     0: no next file name
  1846.     1: (or greater) next filename to be obtained from **cmlist.
  1847.   Returns:
  1848.     1, with name of next file in filnam.
  1849.     0, no more files, with filnam set to empty string.
  1850.    -1, file not found
  1851.    -2, file is not readable
  1852.    -3, read access denied
  1853.    -4, cancelled
  1854.    -5, too many files match wildcard
  1855. */
  1856.  
  1857. int
  1858. gnfile() {
  1859.     int x; long y;
  1860.     int retcode = 0;
  1861.  
  1862.     debug(F101,"gnfile sndsrc","",sndsrc);
  1863.     fsize = -1L;            /* Initialize file size */
  1864.     if (sndsrc == 0) {            /* It's not really a file */
  1865.     if (nfils > 0) {        /* It's a pipe, or stdin */
  1866.         strcpy(filnam, *cmlist);    /* Copy its "name" */
  1867.         nfils = 0;            /* There is no next file */
  1868.         return(1);            /* OK this time */
  1869.     } else return(0);        /* but not next time */
  1870.     }
  1871.  
  1872. /* If file group interruption (C-Z) occurred, fail.  */
  1873.  
  1874.     if (czseen) {
  1875.     tlog(F100,"Transaction cancelled","",0L);
  1876.         debug(F100,"gnfile czseen","",0);
  1877.     return(-4);
  1878.     }
  1879.  
  1880. /* Loop through file list till we find a readable, sendable file */
  1881.  
  1882.     y = -1L;                /* Loop exit (file size) variable */
  1883.     while (y < 0L) {            /* Keep trying till we get one... */
  1884.     if (sndsrc > 0) {        /* File list in cmlist */
  1885.         debug(F101,"gnfile nfils","",nfils);
  1886.         if (nfils-- > 0) {        /* Still some left? */
  1887.         strcpy(filnam,*cmlist++);
  1888.         debug(F111,"gnfile cmlist filnam",filnam,nfils);
  1889.         if (!clfils) {        /* Expand only if not from cmdline */
  1890.             x = zxpand(filnam);
  1891.             debug(F101,"gnfile zxpand","",x);
  1892.             if (x == 1) {
  1893.             znext(filnam);
  1894.             goto gotnam;
  1895.             }
  1896.             if (x == 0) {
  1897.             retcode = -1; /* None match */
  1898.             continue;
  1899.             }
  1900.             if (x < 0) return(-5); /* Too many to expand */
  1901.             sndsrc = -1;    /* Change send-source to znext() */
  1902.         }
  1903.         } else {            /* We're out of files. */
  1904.         debug(F101,"gnfile done","",nfils);
  1905.         *filnam = '\0';
  1906.         return(retcode);
  1907.         }
  1908.     }
  1909.  
  1910. /* Otherwise, step to next element of internal wildcard expansion list. */
  1911.  
  1912.     if (sndsrc < 0) {
  1913.         x = znext(filnam);
  1914.         debug(F111,"gnfile znext",filnam,x);
  1915.         if (x == 0) {        /* If no more, */
  1916.         sndsrc = 1;        /* go back to list */
  1917.         continue;
  1918.         }
  1919.     }
  1920.  
  1921. /* Get here with a filename. */
  1922.  
  1923. gotnam:
  1924.     if (sndsrc) {
  1925.         y = zchki(filnam);        /* Check if file readable */
  1926.         retcode = (int) y;        /* Possible return code */
  1927.         if (y == -1L) {        /* If not found */
  1928.         debug(F110,"gnfile skipping:",filnam,0);
  1929.         tlog(F111,filnam,"not sent, reason",(long)y);
  1930.         screen(SCR_ST,ST_SKIP,0l,filnam);
  1931.         continue;
  1932.         } else if (y < 0) {
  1933.         continue;
  1934.         } else {
  1935.         fsize = y;
  1936.         return(1);
  1937.         }
  1938.     } else return(1);        /* sndsrc is 0... */
  1939.     }
  1940.     *filnam = '\0';            /* Should never get here */
  1941.     return(0);
  1942. }
  1943.  
  1944.  
  1945. /*  S N D H L P  --  Routine to send builtin help  */
  1946.  
  1947. int
  1948. sndhlp() {
  1949. #ifndef NOSERVER
  1950.     nfils = 0;                /* No files, no lists. */
  1951.     xflg = 1;                /* Flag we must send X packet. */
  1952.     strcpy(cmdstr,versio);        /* Data for X packet. */
  1953.     first = 1;                /* Init getchx lookahead */
  1954.     memstr = 1;                /* Just set the flag. */
  1955.     memptr = hlptxt;            /* And the pointer. */
  1956.     if (binary) {            /* If file mode is binary, */
  1957.     savmod = binary;        /*  remember to restore it later. */
  1958.     binary = 0;            /*  turn it back to text for this, */
  1959.     }
  1960.     return(sinit());
  1961. #else
  1962.     return(0);
  1963. #endif /* NOSERVER */
  1964. }
  1965.  
  1966. #ifdef OS2
  1967. /*  S N D S P A C E -- send disk space message  */
  1968. int
  1969. sndspace(int drive) {
  1970. #ifndef NOSERVER
  1971.     static char spctext[64];
  1972.     if (drive)
  1973.       sprintf(spctext, " Drive %c: %ldK free\n", drive, 
  1974.           zdskspace(drive - 'A' + 1) / 1024L);
  1975.     else
  1976.       sprintf(spctext, " Free space: %ldK\n", zdskspace(0)/1024L);
  1977.     nfils = 0;            /* No files, no lists. */
  1978.     xflg = 1;            /* Flag we must send X packet. */
  1979.     strcpy(cmdstr,"free space");/* Data for X packet. */
  1980.     first = 1;            /* Init getchx lookahead */
  1981.     memstr = 1;            /* Just set the flag. */
  1982.     memptr = spctext;        /* And the pointer. */
  1983.     if (binary) {        /* If file mode is binary, */
  1984.         savmod = binary;    /*  remember to restore it later. */
  1985.         binary = 0;        /*  turn it back to text for this, */
  1986.     }
  1987.     return(sinit());
  1988. #else
  1989.     return(0);
  1990. #endif /* NOSERVER */
  1991. }
  1992. #endif /* OS2 */
  1993.  
  1994. /*  C W D  --  Change current working directory  */
  1995.  
  1996. /*
  1997.  String passed has first byte as length of directory name, rest of string
  1998.  is name.  Fails if can't connect, else ACKs (with name) and succeeds. 
  1999. */
  2000.  
  2001. int
  2002. cwd(vdir) char *vdir; {
  2003.     char *cdd, *zgtdir(), *dirp;
  2004.  
  2005.     vdir[xunchar(*vdir) + 1] = '\0';    /* Terminate string with a null */
  2006.     dirp = vdir+1;
  2007.     tlog(F110,"Directory requested: ",dirp,0L);
  2008.     if (zchdir(dirp)) {        /* Try to change */
  2009.     cdd = zgtdir();        /* Get new working directory. */
  2010.     debug(F110,"cwd",cdd,0);
  2011.     encstr((CHAR *)cdd);
  2012.     ack1((CHAR *)(encbuf+7));
  2013.     screen(SCR_CD,0,0l,cdd);
  2014.     tlog(F110,"Changed directory to",cdd,0L);
  2015.     return(1); 
  2016.     } else {
  2017.     debug(F110,"cwd failed",dirp,0);
  2018.     tlog(F110,"Failed to change directory to",dirp,0L);
  2019.     return(0);
  2020.     }
  2021. }
  2022.  
  2023.  
  2024. /*  S Y S C M D  --  Do a system command  */
  2025.  
  2026. /*  Command string is formed by concatenating the two arguments.  */
  2027.  
  2028. int
  2029. syscmd(prefix,suffix) char *prefix, *suffix; {
  2030.     char *cp;
  2031.  
  2032.     if (prefix == NULL || *prefix == '\0') return(0);
  2033.  
  2034.     for (cp = cmdstr; *prefix != '\0'; *cp++ = *prefix++) ;
  2035.     while (*cp++ = *suffix++) ;        /* copy suffix */
  2036.  
  2037.     debug(F110,"syscmd",cmdstr,0);
  2038.     if (zxcmd(ZIFILE,cmdstr) > 0) {
  2039.     debug(F110,"syscmd zxcmd ok",cmdstr,0);
  2040.     nfils = sndsrc = 0;        /* Flag that input is from stdin */
  2041.     xflg = hcflg = 1;        /* And special flags for pipe */
  2042.     if (binary) {            /* If file mode is binary, */
  2043.         savmod = binary;        /*  remember to restore it later. */
  2044.         binary = 0;            /*  turn it back to text for this, */
  2045.     }
  2046.     return (sinit());        /* Send S packet */
  2047.     } else {
  2048.     debug(F100,"syscmd zxcmd failed",cmdstr,0);
  2049.     return(0);
  2050.     }
  2051. }
  2052.  
  2053. /*  R E M S E T  --  Remote Set  */
  2054. /*  Called by server to set variables as commanded in REMOTE SET packets.  */
  2055. /*  Returns 1 on success, 0 on failure.  */
  2056.  
  2057. int
  2058. remset(s) char *s; {
  2059.     int len, i, x, y;
  2060.     char *p;
  2061.  
  2062.     len = xunchar(*s++);        /* Length of first field */
  2063.     p = s + len;            /* Pointer to second length field */
  2064.     *p++ = '\0';            /* Zero out second length field */
  2065.     x = atoi(s);            /* Value of first field */
  2066.     debug(F111,"remset",s,x);
  2067.     debug(F110,"remset",p,0);
  2068.     switch (x) {            /* Do the right thing */
  2069.       case 132:                /* Attributes (all, in) */
  2070.     atcapr = atoi(p);
  2071.     return(1);
  2072.       case 133:                /* File length attributes */
  2073.       case 233:                /* IN/OUT combined */
  2074.       case 148:                /* Both kinds of lengths */
  2075.       case 248:
  2076.     atleni = atleno = atoi(p);
  2077.     return(1);
  2078.       case 134:                /* File Type (text/binary) */
  2079.       case 234:
  2080.     attypi = attypo = atoi(p);
  2081.     return(1);
  2082.       case 135:                /* File creation date */
  2083.       case 235:
  2084.     atdati = atdato = atoi(p);
  2085.     return(1);
  2086.       case 139:                /* File Blocksize */
  2087.       case 239:
  2088.     atblki = atblko = atoi(p);
  2089.     return(1);
  2090.       case 141:                /* Encoding / Character Set */
  2091.       case 241:
  2092.     atenci = atenco = atoi(p);
  2093.     return(1);
  2094.       case 142:                /* Disposition */
  2095.       case 242:
  2096.     atdisi = atdiso = atoi(p);
  2097.     return(1);
  2098.       case 145:                /* System ID */
  2099.       case 245:
  2100.     atsidi = atsido = atoi(p);
  2101.     return(1);
  2102.       case 147:                /* System-Dependent Info */
  2103.       case 247:
  2104.     atsysi = atsyso = atoi(p);
  2105.     return(1);
  2106.       case 232:                /* Attributes (all, out) */
  2107.     atcapr = atoi(p);
  2108.     return(1);
  2109.       case 300:                /* File type (text, binary) */
  2110.     binary = atoi(p);
  2111.     return(1);
  2112.       case 301:                /* File name conversion */
  2113.     fncnv = 1 - atoi(p);        /* (oops) */
  2114.     return(1);
  2115.       case 302:                /* File name collision */
  2116.     x = atoi(p);
  2117.     if (x == XYFX_R) warn = 1;    /* Rename */
  2118.     if (x == XYFX_X) warn = 0;    /* Replace */
  2119.     fncact = x;
  2120.     return(1);
  2121.       case 310:                /* Incomplete File Disposition */
  2122.     keep = atoi(p);            /* Keep, Discard */
  2123.     return(1);
  2124.       case 311:                /* Blocksize */
  2125.     fblksiz = atoi(p);
  2126.     return(1);
  2127.       case 312:                /* Record Length */
  2128.     frecl = atoi(p);
  2129.     return(1);
  2130.       case 313:                /* Record format */
  2131.     frecfm = atoi(p);
  2132.     return(1);
  2133.       case 314:                /* File organization */
  2134.     forg = atoi(p);
  2135.     return(1);
  2136.       case 315:                /* File carriage control */
  2137.     fcctrl = atoi(p);
  2138.     return(1);
  2139.       case 400:                /* Block check */
  2140.     y = atoi(p);
  2141.     if (y < 5 && y > 0) {
  2142.         bctr = y;
  2143.         return(1);
  2144.     } else if (*p == 'B') {
  2145.         bctr = 4;
  2146.         return(1);
  2147.     }
  2148.     return(0);
  2149.       case 401:                /* Receive packet-length */
  2150.     rpsiz = urpsiz = atoi(p);
  2151.     if (urpsiz > MAXRP) urpsiz = MAXRP; /* Max long-packet length */
  2152.     if (rpsiz > 94) rpsiz = 94;        /* Max short-packet length */
  2153.     urpsiz = adjpkl(urpsiz,wslots,bigrbsiz);
  2154.     return(1);
  2155.       case 402:                /* Receive timeout */
  2156.     y = atoi(p);            /* Client is telling us */
  2157.     if (y > -1 && y < 999) {    /* the timeout that it wants */
  2158.         pkttim = chktimo(y,timef);    /* us to tell it to use. */
  2159.         return(1);
  2160.     } else return(0);
  2161.       case 403:                /* Retry limit */
  2162.     y = atoi(p);
  2163.     if (y > -1 && y < 95) {
  2164.         maxtry = y;
  2165.         return(1);
  2166.     } else return(0);
  2167.       case 404:                /* Server timeout */
  2168.     y = atoi(p);
  2169.     if (y < 0) return(0);
  2170.     srvtim = y;
  2171.     return(1);
  2172.  
  2173. #ifndef NOCSETS
  2174.       case 405:                /* Transfer character set */
  2175.     for (i = 0; i < ntcsets; i++) { 
  2176.         if (!strcmp(tcsinfo[i].designator,p)) break;
  2177.     }
  2178.     debug(F101,"remset xfer charset lookup","",i);
  2179.     if (i == ntcsets) return(0);
  2180.     tcharset = tcsinfo[i].code;    /* if known, use it */
  2181.     if (tcharset == TC_TRANSP)
  2182.       rx = NULL;
  2183.     else
  2184.       rx = xlr[tcharset][fcharset];    /* translation function */
  2185.     return(1);
  2186. #endif /* NOCSETS */
  2187.  
  2188.       case 406:                /* Window slots */
  2189.     y = atoi(p);
  2190.     if (y == 0) y = 1;
  2191.     if (y < 1 && y > 31) return(0);
  2192.     wslotr = y;
  2193.     swcapr = 1;
  2194.     urpsiz = adjpkl(urpsiz,wslots,bigrbsiz);
  2195.     return(1);
  2196.       default:                /* Anything else... */
  2197.     return(0);
  2198.     }
  2199. }
  2200.  
  2201. /* Adjust packet length based on number of window slots and buffer size */
  2202.  
  2203. int
  2204. adjpkl(pktlen,slots,bufsiz) int pktlen, slots, bufsiz; {
  2205.     debug(F101,"adjpkl len","",pktlen);
  2206.     debug(F101,"adjpkl slots","",slots);
  2207.     debug(F101,"adjpkl bufsiz","",bufsiz);
  2208.     if (((pktlen + 6) * slots) > bufsiz)
  2209.       pktlen = (bufsiz / slots) - 6;
  2210.     debug(F101,"adjpkl new len","",pktlen);
  2211.     return(pktlen);
  2212. }
  2213.